home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / mudlib / sys / strings.h < prev    next >
C/C++ Source or Header  |  2001-07-14  |  210b  |  11 lines

  1. #ifndef LPC_STRINGS_H_
  2. #define LPC_STRINGS_H_ 1
  3.  
  4. /* 'where' argument values for trim() */
  5.  
  6. #define TRIM_LEFT  0x01
  7. #define TRIM_RIGHT 0x02
  8. #define TRIM_BOTH  (TRIM_LEFT|TRIM_RIGHT)
  9.  
  10. #endif /* LPC_STRINGS_H_ */
  11.